Remove an extra space and swap word order (#518166, Matt Kraai)
authorJohan Dahlin <johan@gnome.org>
Mon, 3 Mar 2008 01:06:16 +0000 (01:06 +0000)
committerJohan Dahlin <johan@src.gnome.org>
Mon, 3 Mar 2008 01:06:16 +0000 (01:06 +0000)
2008-03-02  Johan Dahlin  <johan@gnome.org>

    * docs/tutorial/gtk-tut.sgml: Remove an extra space and swap word order
    (#518166, Matt Kraai)

svn path=/trunk/; revision=19692

ChangeLog
docs/tutorial/gtk-tut.sgml

index f7aeec0c67d33d001ba61e91958b733016244267..41475f6adc67a363423a807bee8825bb94896e4a 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+2008-03-02  Johan Dahlin  <johan@gnome.org>
+
+       * docs/tutorial/gtk-tut.sgml: Remove an extra space and swap word order
+       (#518166, Matt Kraai)
+
 2008-03-02  Johan Dahlin  <johan@gnome.org>
 
        * docs/tutorial/gtk-tut.sgml: Add a missing space
index a141279fb9d8bc91da9ba3bacaa2ef9a1e26514b..335864789cb3eaddd490b50e34686ef95de11652 100755 (executable)
@@ -4768,7 +4768,7 @@ buttons. Lets look at how to create a Spin Button:</para>
 
 <programlisting role="C">
 GtkWidget *gtk_spin_button_new( GtkAdjustment *adjustment,
-                                gdouble         climb_rate,
+                                gdouble        climb_rate,
                                 guint          digits );
 </programlisting>
 
@@ -4913,7 +4913,7 @@ void gtk_spin_button_set_update_policy( GtkSpinButton  *spin_button,
 inserted text and syncing its value with the values of the
 Adjustment.</para>
 
-<para>In the case of <literal>GTK_UPDATE_IF_VALID</literal> the Spin Button only value
+<para>In the case of <literal>GTK_UPDATE_IF_VALID</literal> the Spin Button value only
 gets changed if the text input is a numeric value that is within the
 range specified by the Adjustment. Otherwise the text is reset to the
 current value.</para>